Microsoft Cognitive Language Service - Analyze Conversations Authoring (preview:2022-05-15)

2025/07/24 • 28 deleted methods

ConversationalAnalysisAuthoring_ListProjects (removed)
Description Lists the existing projects.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects
{
top: integer ,
skip: integer ,
maxpagesize: integer ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
createdDateTime: string ,
lastModifiedDateTime: string ,
lastTrainedDateTime: string ,
lastDeployedDateTime: string ,
projectKind: enum ,
settings:
{
confidenceThreshold: number ,
}
,
projectName: string ,
multilingual: boolean ,
description: string ,
language: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_CreateProject (removed)
Description Creates a new project or updates an existing one.
Reference Link ¶

⚼ Request

PATCH:  /authoring/analyze-conversations/projects/{projectName}
{
projectName: string ,
body:
{
projectKind: enum ,
settings:
{
confidenceThreshold: number ,
}
,
projectName: string ,
multilingual: boolean ,
description: string ,
language: string ,
}
,
api-version: string ,
}

⚐ Response (200)

{
createdDateTime: string ,
lastModifiedDateTime: string ,
lastTrainedDateTime: string ,
lastDeployedDateTime: string ,
projectKind: enum ,
settings:
{
confidenceThreshold: number ,
}
,
projectName: string ,
multilingual: boolean ,
description: string ,
language: string ,
}

⚐ Response (201)

{
createdDateTime: string ,
lastModifiedDateTime: string ,
lastTrainedDateTime: string ,
lastDeployedDateTime: string ,
projectKind: enum ,
settings:
{
confidenceThreshold: number ,
}
,
projectName: string ,
multilingual: boolean ,
description: string ,
language: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetProject (removed)
Description Gets the details of a project.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}
{
projectName: string ,
api-version: string ,
}

⚐ Response (200)

{
createdDateTime: string ,
lastModifiedDateTime: string ,
lastTrainedDateTime: string ,
lastDeployedDateTime: string ,
projectKind: enum ,
settings:
{
confidenceThreshold: number ,
}
,
projectName: string ,
multilingual: boolean ,
description: string ,
language: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_DeleteProject (removed)
Description Deletes a project.
Reference Link ¶

⚼ Request

DELETE:  /authoring/analyze-conversations/projects/{projectName}
{
projectName: string ,
api-version: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_Export (removed)
Description Triggers a job to export a project's data.
Reference Link ¶

⚼ Request

POST:  /authoring/analyze-conversations/projects/{projectName}/:export
{
projectName: string ,
format: string ,
stringIndexType: string ,
assetKind: string ,
api-version: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_Import (removed)
Description Triggers a job to import a project. If a project with the same name already exists, the data of that project is replaced.
Reference Link ¶

⚼ Request

POST:  /authoring/analyze-conversations/projects/{projectName}/:import
{
projectName: string ,
format: string ,
body:
{
projectFileVersion: string ,
stringIndexType: enum ,
metadata:
{
projectKind: enum ,
settings:
{
confidenceThreshold: number ,
}
,
projectName: string ,
multilingual: boolean ,
description: string ,
language: string ,
}
,
assets:
{
projectKind: enum ,
}
,
}
,
api-version: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_Train (removed)
Description Triggers a training job for a project.
Reference Link ¶

⚼ Request

POST:  /authoring/analyze-conversations/projects/{projectName}/:train
{
projectName: string ,
body:
{
modelLabel: string ,
trainingConfigVersion: string ,
trainingMode: enum ,
evaluationOptions:
{
kind: enum ,
trainingSplitPercentage: integer ,
testingSplitPercentage: integer ,
}
,
}
,
api-version: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_ListDeployments (removed)
Description Lists the deployments belonging to a project.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/deployments
{
projectName: string ,
top: integer ,
skip: integer ,
maxpagesize: integer ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
deploymentName: string ,
modelId: string ,
lastTrainedDateTime: string ,
lastDeployedDateTime: string ,
deploymentExpirationDate: string ,
modelTrainingConfigVersion: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_SwapDeployments (removed)
Description Swaps two existing deployments with each other.
Reference Link ¶

⚼ Request

POST:  /authoring/analyze-conversations/projects/{projectName}/deployments/:swap
{
projectName: string ,
body:
{
firstDeploymentName: string ,
secondDeploymentName: string ,
}
,
api-version: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetDeployment (removed)
Description Gets the details of a deployment.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/deployments/{deploymentName}
{
projectName: string ,
deploymentName: string ,
api-version: string ,
}

⚐ Response (200)

{
deploymentName: string ,
modelId: string ,
lastTrainedDateTime: string ,
lastDeployedDateTime: string ,
deploymentExpirationDate: string ,
modelTrainingConfigVersion: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_DeployProject (removed)
Description Creates a new deployment or replaces an existing one.
Reference Link ¶

⚼ Request

PUT:  /authoring/analyze-conversations/projects/{projectName}/deployments/{deploymentName}
{
projectName: string ,
deploymentName: string ,
body:
{
trainedModelLabel: string ,
}
,
api-version: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_DeleteDeployment (removed)
Description Deletes a project deployment.
Reference Link ¶

⚼ Request

DELETE:  /authoring/analyze-conversations/projects/{projectName}/deployments/{deploymentName}
{
projectName: string ,
deploymentName: string ,
api-version: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetDeploymentStatus (removed)
Description Gets the status of an existing deployment job.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/deployments/{deploymentName}/jobs/{jobId}
{
projectName: string ,
deploymentName: string ,
jobId: string ,
api-version: string ,
}

⚐ Response (200)

{
$schema: object ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetSwapDeploymentsStatus (removed)
Description Gets the status of an existing swap deployment job.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/deployments/swap/jobs/{jobId}
{
projectName: string ,
jobId: string ,
api-version: string ,
}

⚐ Response (200)

{
$schema: object ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetExportStatus (removed)
Description Gets the status of an export job. Once job completes, returns the project metadata, and assets.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/export/jobs/{jobId}
{
projectName: string ,
jobId: string ,
api-version: string ,
}

⚐ Response (200)

{
resultUrl: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetImportStatus (removed)
Description Gets the status for an import.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/import/jobs/{jobId}
{
projectName: string ,
jobId: string ,
api-version: string ,
}

⚐ Response (200)

{
$schema: object ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_ListTrainedModels (removed)
Description Lists the trained models belonging to a project.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/models
{
projectName: string ,
top: integer ,
skip: integer ,
maxpagesize: integer ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
label: string ,
modelId: string ,
lastTrainedDateTime: string ,
lastTrainingDurationInSeconds: integer ,
modelExpirationDate: string ,
modelTrainingConfigVersion: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetTrainedModel (removed)
Description Gets the details of a trained model.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/models/{trainedModelLabel}
{
projectName: string ,
trainedModelLabel: string ,
api-version: string ,
}

⚐ Response (200)

{
label: string ,
modelId: string ,
lastTrainedDateTime: string ,
lastTrainingDurationInSeconds: integer ,
modelExpirationDate: string ,
modelTrainingConfigVersion: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_DeleteTrainedModel (removed)
Description Deletes an existing trained model.
Reference Link ¶

⚼ Request

DELETE:  /authoring/analyze-conversations/projects/{projectName}/models/{trainedModelLabel}
{
projectName: string ,
trainedModelLabel: string ,
api-version: string ,
}

⚐ Response (204)

{}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetModelEvaluationResults (removed)
Description Gets the detailed results of the evaluation for a trained model. This includes the raw inference results for the data included in the evaluation process.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/models/{trainedModelLabel}/evaluation/result
{
projectName: string ,
trainedModelLabel: string ,
stringIndexType: string ,
top: integer ,
skip: integer ,
maxpagesize: integer ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
text: string ,
language: string ,
entitiesResult:
{
expectedEntities:
[
{
category: string ,
offset: integer ,
length: integer ,
}
,
]
,
predictedEntities:
[
{
category: string ,
offset: integer ,
length: integer ,
}
,
]
,
}
,
intentsResult:
{
expectedIntent: string ,
predictedIntent: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetModelEvaluationSummary (removed)
Description Gets the evaluation summary of a trained model. The summary includes high level performance measurements of the model e.g., F1, Precision, Recall, etc.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/models/{trainedModelLabel}/evaluation/summary-result
{
projectName: string ,
trainedModelLabel: string ,
api-version: string ,
}

⚐ Response (200)

{
entitiesEvaluation:
{
confusionMatrix: object ,
entities: object ,
microF1: number ,
microPrecision: number ,
microRecall: number ,
macroF1: number ,
macroPrecision: number ,
macroRecall: number ,
}
,
intentsEvaluation:
{
confusionMatrix: object ,
intents: object ,
microF1: number ,
microPrecision: number ,
microRecall: number ,
macroF1: number ,
macroPrecision: number ,
macroRecall: number ,
}
,
evaluationOptions:
{
kind: enum ,
trainingSplitPercentage: integer ,
testingSplitPercentage: integer ,
}
,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_ListTrainingJobs (removed)
Description Lists the non-expired training jobs created for a project.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/train/jobs
{
projectName: string ,
top: integer ,
skip: integer ,
maxpagesize: integer ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
result:
{
modelLabel: string ,
trainingConfigVersion: string ,
trainingMode: enum ,
trainingStatus:
{
percentComplete: integer ,
startDateTime: string ,
endDateTime: string ,
status: enum ,
}
,
evaluationStatus:
{
percentComplete: integer ,
startDateTime: string ,
endDateTime: string ,
status: enum ,
}
,
estimatedEndDateTime: string ,
}
,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetTrainingStatus (removed)
Description Gets the status for a training job.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/{projectName}/train/jobs/{jobId}
{
projectName: string ,
jobId: string ,
api-version: string ,
}

⚐ Response (200)

{
result:
{
modelLabel: string ,
trainingConfigVersion: string ,
trainingMode: enum ,
trainingStatus:
{
percentComplete: integer ,
startDateTime: string ,
endDateTime: string ,
status: enum ,
}
,
evaluationStatus:
{
percentComplete: integer ,
startDateTime: string ,
endDateTime: string ,
status: enum ,
}
,
estimatedEndDateTime: string ,
}
,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_CancelTrainingJob (removed)
Description Triggers a cancellation for a running training job.
Reference Link ¶

⚼ Request

POST:  /authoring/analyze-conversations/projects/{projectName}/train/jobs/{jobId}/:cancel
{
projectName: string ,
jobId: string ,
api-version: string ,
}

⚐ Response (202)

{
operation-location: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetProjectDeletionStatus (removed)
Description Gets the status for a project deletion job.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/global/deletion-jobs/{jobId}
{
jobId: string ,
api-version: string ,
}

⚐ Response (200)

{
$schema: object ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetSupportedLanguages (removed)
Description Lists the supported languages for the given project type.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/global/languages
{
projectKind: string ,
top: integer ,
skip: integer ,
maxpagesize: integer ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
languageName: string ,
languageCode: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_GetSupportedPrebuiltEntities (removed)
Description Lists the supported prebuilt entities that can be used while creating composed entities.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/global/prebuilt-entities
{
language: string ,
multilingual: string ,
top: integer ,
skip: integer ,
maxpagesize: integer ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
category: string ,
description: string ,
examples: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}
ConversationalAnalysisAuthoring_ListTrainingConfigVersions (removed)
Description Lists the support training config version for a given project type.
Reference Link ¶

⚼ Request

GET:  /authoring/analyze-conversations/projects/global/training-config-versions
{
projectKind: string ,
top: integer ,
skip: integer ,
maxpagesize: integer ,
api-version: string ,
}

⚐ Response (200)

{
value:
[
{
trainingConfigVersion: string ,
modelExpirationDate: string ,
}
,
]
,
nextLink: string ,
}

⚐ Response (default)

{
error:
{
code: enum ,
message: string ,
target: string ,
details:
[
string ,
]
,
innererror:
{
code: enum ,
message: string ,
details: object ,
target: string ,
innererror: string ,
}
,
}
,
}